1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 package com.sun.imageio.plugins.gif;
27
28 import java.util.ListResourceBundle;
29
30 public class GIFStreamMetadataFormatResources extends ListResourceBundle {
31
32 public GIFStreamMetadataFormatResources() {}
33
34 protected Object[][] getContents() {
35 return new Object[][] {
36
37
38 { "Version", "The file version, either 87a or 89a" },
39 { "LogicalScreenDescriptor",
40 "The logical screen descriptor, except for the global color table" },
41 { "GlobalColorTable", "The global color table" },
42 { "ColorTableEntry", "A global color table entry" },
43
44
45 { "Version/value",
46 "The version string" },
47 { "LogicalScreenDescriptor/logicalScreenWidth",
48 "The width in pixels of the whole picture" },
49 { "LogicalScreenDescriptor/logicalScreenHeight",
50 "The height in pixels of the whole picture" },
51 { "LogicalScreenDescriptor/colorResolution",
52 "The number of bits of color resolution, beteen 1 and 8" },
53 { "LogicalScreenDescriptor/pixelAspectRatio",
54 "If 0, indicates square pixels, else W/H = (value + 15)/64" },
55 { "GlobalColorTable/sizeOfGlobalColorTable",
56 "The number of entries in the global color table" },
57 { "GlobalColorTable/backgroundColorIndex",
58 "The index of the color table entry to be used as a background" },
59 { "GlobalColorTable/sortFlag",
60 "True if the global color table is sorted by frequency" },
61 { "ColorTableEntry/index", "The index of the color table entry" },
62 { "ColorTableEntry/red",
63 "The red value for the color table entry" },
64 { "ColorTableEntry/green",
65 "The green value for the color table entry" },
66 { "ColorTableEntry/blue",
67 "The blue value for the color table entry" },
68
69 };
70 }
71 }